home *** CD-ROM | disk | FTP | other *** search
/ BMUG PD-ROM BV3 / BMUG PD-ROM Version BV3 (CDRM1097900).iso / HyperCard / The World / Mid East Countries / card_3032.txt < prev    next >
Text File  |  1990-11-18  |  18KB  |  885 lines

  1. -- card: 3032 from stack: in
  2. -- bmap block id: 3331
  3. -- flags: 4000
  4. -- background id: 2586
  5. -- name: Middle East Countries
  6. ----- HyperTalk script -----
  7.  
  8. on nextCountry
  9.   global countryNum
  10.   global theCountry
  11.   put countryNum + 1 into countryNum
  12.   put "Click on:" into line 1 of card field Prompt
  13.   get line countryNum of card field CountryList
  14.   put it into theCountry
  15.   put theCountry into line 2 of card field Prompt
  16.   put "" into line 4 of card field Prompt
  17. end nextCountry
  18.  
  19.  
  20. on countryHandler
  21.   global learnMode
  22.   if learnMode then
  23.     learnHandler
  24.   else
  25.     guessHandler
  26.   end if
  27. end countryHandler
  28.  
  29.  
  30. on learnHandler
  31.   global clickedCountry
  32.   clearPrompt
  33.   put "The country is:" into line 1 of card field Prompt
  34.   put clickedCountry into line 2 of card field Prompt
  35.   wait 1 seconds
  36.   put "Click on" into line 4 of card field Prompt
  37.   put "any country" into line 5 of card field Prompt
  38.   put "with a dot." into line 6 of card field Prompt
  39. end learnHandler
  40.  
  41.  
  42. on guessHandler
  43.   global theCountry
  44.   global clickedCountry
  45.   global countryNum
  46.   if countryNum < 18 then
  47.     if clickedCountry <> theCountry then
  48.       errorHandler
  49.     else
  50.       rightHandler
  51.     end if
  52.     nextCountry
  53.   else
  54.     clearPrompt
  55.     showScoreCard
  56.   end if
  57. end guessHandler
  58.  
  59.  
  60. on clearPrompt
  61.   repeat with i = 1 to 6
  62.     put "" into line i of card field Prompt
  63.   end repeat
  64. end clearPrompt
  65.  
  66.  
  67. on errorHandler
  68.   global errorCount
  69.   put errorCount + 1 into errorCount
  70.   highlightRightCountry
  71. end errorHandler
  72.  
  73.  
  74. on highlightRightCountry
  75.   global theCountry
  76.   repeat until the mouseClick
  77.     set the style of card button theCountry to rectangle
  78.     wait 5
  79.     set the style of card button theCountry to transparent
  80.     wait 5
  81.   end repeat
  82. end highlightRightCountry
  83.  
  84.  
  85. on rightHandler
  86.   put "CORRECT!" into line 4 of card field Prompt
  87. end rightHandler
  88.  
  89.  
  90. on showScoreCard
  91.   global errorCount
  92.   put errorCount into line 2 of card field ScoreCard
  93.   put round((18-errorCount)*100/18) into percentage
  94.   put percentage into line 6 of card field ScoreCard
  95.   show card field ScoreCard
  96.   wait until the mouseClick
  97.   hide card field ScoreCard
  98. end showScoreCard
  99.  
  100.  
  101. on closeCard
  102.   clearPrompt
  103.   repeat with i = 2 to 8
  104.     hide card field i
  105.   end repeat
  106. end closeCard
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113. -- part 1 (button)
  114. -- low flags: 00
  115. -- high flags: 8003
  116. -- rect: left=19 top=153 right=175 bottom=119
  117. -- title width / last selected line: 0
  118. -- icon id / first selected line: 0 / 0
  119. -- text alignment: 1
  120. -- font id: 0
  121. -- text size: 12
  122. -- style flags: 0
  123. -- line height: 16
  124. -- part name: Quiz
  125. ----- HyperTalk script -----
  126. on mouseUp
  127.   global errorCount
  128.   global countryNum
  129.   global learnMode
  130.   clearPrompt
  131.   hide card field ScoreCard
  132.   hide card field CountryList
  133.   put 0 into countryNum
  134.   put 0 into errorCount
  135.   put false into learnMode
  136.   nextCountry
  137. end mouseUp
  138.  
  139.  
  140.  
  141.  
  142. -- part 2 (button)
  143. -- low flags: 00
  144. -- high flags: 8003
  145. -- rect: left=19 top=180 right=202 bottom=119
  146. -- title width / last selected line: 0
  147. -- icon id / first selected line: 0 / 0
  148. -- text alignment: 1
  149. -- font id: 0
  150. -- text size: 12
  151. -- style flags: 0
  152. -- line height: 16
  153. -- part name: Learn
  154. ----- HyperTalk script -----
  155. on mouseUp
  156.   global learnMode
  157.   put true into learnMode
  158.   clearPrompt
  159.   put "Click on" into line 1 of card field Prompt
  160.   put "any country" into line 2 of card field Prompt
  161.   put "with a dot." into line 3 of card field Prompt
  162. end mouseUp
  163.  
  164.  
  165.  
  166. -- part 3 (button)
  167. -- low flags: 00
  168. -- high flags: 8003
  169. -- rect: left=19 top=207 right=229 bottom=119
  170. -- title width / last selected line: 0
  171. -- icon id / first selected line: 0 / 0
  172. -- text alignment: 1
  173. -- font id: 0
  174. -- text size: 12
  175. -- style flags: 0
  176. -- line height: 16
  177. -- part name: Scramble
  178. ----- HyperTalk script -----
  179. on mouseUp
  180.   set cursor to 4
  181.   show message box
  182.   put "This takes a minute or so." into the message box
  183.   genRandomList
  184.   loadTempList
  185.   repeat with j = 0 to 17
  186.     put 1 into minPosition
  187.     put line 1 of card field RandomList into min
  188.     repeat with i = 1 to 18-j
  189.       put line i of card field RandomList into testNum
  190.       if testNum < min then
  191.         put testNum into min
  192.         put i into minPosition
  193.       end if
  194.     end repeat
  195.     get line minPosition of card field TempList
  196.     put it into line j+1 of card field CountryList
  197.     delete line minPosition of card field TempList
  198.     delete line minPosition of card field RandomList
  199.   end repeat
  200.   hide message box
  201. end mouseUp
  202.  
  203.  
  204. on genRandomList
  205.   repeat with i = 1 to 18
  206.     put random(20) into line i of card field RandomList
  207.   end repeat
  208. end genRandomList
  209.  
  210.  
  211. on loadTempList
  212.   repeat with i = 1 to 18
  213.     get line i of card field PermList
  214.     put it into line i of card field TempList
  215.   end repeat
  216. end loadTempList
  217.  
  218.  
  219.  
  220.  
  221.  
  222. -- part 4 (button)
  223. -- low flags: 00
  224. -- high flags: 8003
  225. -- rect: left=19 top=234 right=256 bottom=119
  226. -- title width / last selected line: 0
  227. -- icon id / first selected line: 0 / 0
  228. -- text alignment: 1
  229. -- font id: 0
  230. -- text size: 12
  231. -- style flags: 0
  232. -- line height: 16
  233. -- part name: Help
  234. ----- HyperTalk script -----
  235. on mouseUp
  236.   show card field Help
  237.   wait until the mouseClick
  238.   hide card field Help
  239. end mouseUp
  240.  
  241.  
  242.  
  243. -- part 5 (button)
  244. -- low flags: 00
  245. -- high flags: 8003
  246. -- rect: left=19 top=261 right=283 bottom=119
  247. -- title width / last selected line: 0
  248. -- icon id / first selected line: 0 / 0
  249. -- text alignment: 1
  250. -- font id: 0
  251. -- text size: 12
  252. -- style flags: 0
  253. -- line height: 16
  254. -- part name: About
  255. ----- HyperTalk script -----
  256. on mouseUp
  257.   show card field About
  258.   wait until the mouseClick
  259.   hide card field About
  260. end mouseUp
  261.  
  262.  
  263.  
  264. -- part 6 (button)
  265. -- low flags: 00
  266. -- high flags: 0000
  267. -- rect: left=203 top=111 right=127 bottom=220
  268. -- title width / last selected line: 0
  269. -- icon id / first selected line: 0 / 0
  270. -- text alignment: 1
  271. -- font id: 0
  272. -- text size: 12
  273. -- style flags: 0
  274. -- line height: 16
  275. -- part name: Syria
  276. ----- HyperTalk script -----
  277. on mouseUp
  278.   global clickedCountry
  279.   put "Syria" into clickedCountry
  280.   countryHandler
  281. end mouseUp
  282.  
  283.  
  284.  
  285. -- part 7 (button)
  286. -- low flags: 00
  287. -- high flags: 0000
  288. -- rect: left=183 top=123 right=135 bottom=195
  289. -- title width / last selected line: 0
  290. -- icon id / first selected line: 0 / 0
  291. -- text alignment: 1
  292. -- font id: 0
  293. -- text size: 12
  294. -- style flags: 0
  295. -- line height: 16
  296. -- part name: Lebanon
  297. ----- HyperTalk script -----
  298. on mouseUp
  299.   global clickedCountry
  300.   put "Lebanon" into clickedCountry
  301.   countryHandler
  302. end mouseUp
  303.  
  304.  
  305.  
  306. -- part 8 (button)
  307. -- low flags: 00
  308. -- high flags: 0000
  309. -- rect: left=189 top=157 right=171 bottom=203
  310. -- title width / last selected line: 0
  311. -- icon id / first selected line: 0 / 0
  312. -- text alignment: 1
  313. -- font id: 0
  314. -- text size: 12
  315. -- style flags: 0
  316. -- line height: 16
  317. -- part name: Jordan
  318. ----- HyperTalk script -----
  319. on mouseUp
  320.   global clickedCountry
  321.   put "Jordan" into clickedCountry
  322.   countryHandler
  323. end mouseUp
  324.  
  325.  
  326.  
  327. -- part 9 (button)
  328. -- low flags: 00
  329. -- high flags: 0000
  330. -- rect: left=149 top=186 right=210 bottom=172
  331. -- title width / last selected line: 0
  332. -- icon id / first selected line: 0 / 0
  333. -- text alignment: 1
  334. -- font id: 0
  335. -- text size: 12
  336. -- style flags: 0
  337. -- line height: 16
  338. -- part name: Egypt
  339. ----- HyperTalk script -----
  340. on mouseUp
  341.   global clickedCountry
  342.   put "Egypt" into clickedCountry
  343.   countryHandler
  344. end mouseUp
  345.  
  346.  
  347.  
  348. -- part 10 (button)
  349. -- low flags: 00
  350. -- high flags: 0000
  351. -- rect: left=240 top=196 right=233 bottom=278
  352. -- title width / last selected line: 0
  353. -- icon id / first selected line: 0 / 0
  354. -- text alignment: 1
  355. -- font id: 0
  356. -- text size: 12
  357. -- style flags: 0
  358. -- line height: 16
  359. -- part name: Saudi Arabia
  360. ----- HyperTalk script -----
  361. on mouseUp
  362.   global clickedCountry
  363.   put "Saudi Arabia" into clickedCountry
  364.   countryHandler
  365. end mouseUp
  366.  
  367.  
  368.  
  369. -- part 11 (button)
  370. -- low flags: 00
  371. -- high flags: 0000
  372. -- rect: left=253 top=276 right=292 bottom=270
  373. -- title width / last selected line: 0
  374. -- icon id / first selected line: 0 / 0
  375. -- text alignment: 1
  376. -- font id: 0
  377. -- text size: 12
  378. -- style flags: 0
  379. -- line height: 16
  380. -- part name: Yemen
  381. ----- HyperTalk script -----
  382. on mouseUp
  383.   global clickedCountry
  384.   put "Yemen" into clickedCountry
  385.   countryHandler
  386. end mouseUp
  387.  
  388.  
  389.  
  390. -- part 12 (button)
  391. -- low flags: 00
  392. -- high flags: 0000
  393. -- rect: left=283 top=276 right=292 bottom=300
  394. -- title width / last selected line: 0
  395. -- icon id / first selected line: 0 / 0
  396. -- text alignment: 1
  397. -- font id: 0
  398. -- text size: 12
  399. -- style flags: 0
  400. -- line height: 16
  401. -- part name: South Yemen
  402. ----- HyperTalk script -----
  403. on mouseUp
  404.   global clickedCountry
  405.   put "South Yemen" into clickedCountry
  406.   countryHandler
  407. end mouseUp
  408.  
  409.  
  410.  
  411. -- part 13 (button)
  412. -- low flags: 00
  413. -- high flags: 0000
  414. -- rect: left=342 top=236 right=252 bottom=359
  415. -- title width / last selected line: 0
  416. -- icon id / first selected line: 0 / 0
  417. -- text alignment: 1
  418. -- font id: 0
  419. -- text size: 12
  420. -- style flags: 0
  421. -- line height: 16
  422. -- part name: Oman
  423. ----- HyperTalk script -----
  424. on mouseUp
  425.   global clickedCountry
  426.   put "Oman" into clickedCountry
  427.   countryHandler
  428. end mouseUp
  429.  
  430.  
  431.  
  432. -- part 14 (button)
  433. -- low flags: 00
  434. -- high flags: 0000
  435. -- rect: left=324 top=208 right=224 bottom=341
  436. -- title width / last selected line: 0
  437. -- icon id / first selected line: 0 / 0
  438. -- text alignment: 1
  439. -- font id: 0
  440. -- text size: 12
  441. -- style flags: 0
  442. -- line height: 16
  443. -- part name: United Arab Emirates
  444. ----- HyperTalk script -----
  445. on mouseUp
  446.   global clickedCountry
  447.   put "United Arab Emirates" into clickedCountry
  448.   countryHandler
  449. end mouseUp
  450.  
  451.  
  452.  
  453. -- part 15 (button)
  454. -- low flags: 00
  455. -- high flags: 0000
  456. -- rect: left=273 top=161 right=176 bottom=290
  457. -- title width / last selected line: 0
  458. -- icon id / first selected line: 0 / 0
  459. -- text alignment: 1
  460. -- font id: 0
  461. -- text size: 12
  462. -- style flags: 0
  463. -- line height: 16
  464. -- part name: Kuwait
  465. ----- HyperTalk script -----
  466. on mouseUp
  467.   global clickedCountry
  468.   put "Kuwait" into clickedCountry
  469.   countryHandler
  470. end mouseUp
  471.  
  472.  
  473.  
  474. -- part 16 (button)
  475. -- low flags: 00
  476. -- high flags: 0000
  477. -- rect: left=235 top=127 right=147 bottom=259
  478. -- title width / last selected line: 0
  479. -- icon id / first selected line: 0 / 0
  480. -- text alignment: 1
  481. -- font id: 0
  482. -- text size: 12
  483. -- style flags: 0
  484. -- line height: 16
  485. -- part name: Iraq
  486. ----- HyperTalk script -----
  487. on mouseUp
  488.   global clickedCountry
  489.   put "Iraq" into clickedCountry
  490.   countryHandler
  491. end mouseUp
  492.  
  493.  
  494.  
  495. -- part 17 (button)
  496. -- low flags: 00
  497. -- high flags: 0000
  498. -- rect: left=314 top=130 right=156 bottom=344
  499. -- title width / last selected line: 0
  500. -- icon id / first selected line: 0 / 0
  501. -- text alignment: 1
  502. -- font id: 0
  503. -- text size: 12
  504. -- style flags: 0
  505. -- line height: 16
  506. -- part name: Iran
  507. ----- HyperTalk script -----
  508. on mouseUp
  509.   global clickedCountry
  510.   put "Iran" into clickedCountry
  511.   countryHandler
  512. end mouseUp
  513.  
  514.  
  515.  
  516. -- part 18 (button)
  517. -- low flags: 00
  518. -- high flags: 0000
  519. -- rect: left=396 top=122 right=145 bottom=424
  520. -- title width / last selected line: 0
  521. -- icon id / first selected line: 0 / 0
  522. -- text alignment: 1
  523. -- font id: 0
  524. -- text size: 12
  525. -- style flags: 0
  526. -- line height: 16
  527. -- part name: Afghanistan
  528. ----- HyperTalk script -----
  529. on mouseUp
  530.   global clickedCountry
  531.   put "Afghanistan" into clickedCountry
  532.   countryHandler
  533. end mouseUp
  534.  
  535.  
  536.  
  537. -- part 19 (button)
  538. -- low flags: 00
  539. -- high flags: 0000
  540. -- rect: left=436 top=154 right=175 bottom=460
  541. -- title width / last selected line: 0
  542. -- icon id / first selected line: 0 / 0
  543. -- text alignment: 1
  544. -- font id: 0
  545. -- text size: 12
  546. -- style flags: 0
  547. -- line height: 16
  548. -- part name: Pakistan
  549. ----- HyperTalk script -----
  550. on mouseUp
  551.   global clickedCountry
  552.   put "Pakistan" into clickedCountry
  553.   countryHandler
  554. end mouseUp
  555.  
  556.  
  557.  
  558. -- part 20 (button)
  559. -- low flags: 00
  560. -- high flags: 0000
  561. -- rect: left=158 top=73 right=98 bottom=195
  562. -- title width / last selected line: 0
  563. -- icon id / first selected line: 0 / 0
  564. -- text alignment: 1
  565. -- font id: 0
  566. -- text size: 12
  567. -- style flags: 0
  568. -- line height: 16
  569. -- part name: Turkey
  570. ----- HyperTalk script -----
  571. on mouseUp
  572.   global clickedCountry
  573.   put "Turkey" into clickedCountry
  574.   countryHandler
  575. end mouseUp
  576.  
  577.  
  578.  
  579. -- part 21 (button)
  580. -- low flags: 00
  581. -- high flags: 0000
  582. -- rect: left=305 top=199 right=211 bottom=317
  583. -- title width / last selected line: 0
  584. -- icon id / first selected line: 0 / 0
  585. -- text alignment: 1
  586. -- font id: 0
  587. -- text size: 12
  588. -- style flags: 0
  589. -- line height: 16
  590. -- part name: Qatar
  591. ----- HyperTalk script -----
  592. on mouseUp
  593.   global clickedCountry
  594.   put "Qatar" into clickedCountry
  595.   countryHandler
  596. end mouseUp
  597.  
  598.  
  599.  
  600. -- part 22 (button)
  601. -- low flags: 00
  602. -- high flags: 0000
  603. -- rect: left=301 top=187 right=199 bottom=313
  604. -- title width / last selected line: 0
  605. -- icon id / first selected line: 0 / 0
  606. -- text alignment: 1
  607. -- font id: 0
  608. -- text size: 12
  609. -- style flags: 0
  610. -- line height: 16
  611. -- part name: Bahrain
  612. ----- HyperTalk script -----
  613. on mouseUp
  614.   global clickedCountry
  615.   put "Bahrain" into clickedCountry
  616.   countryHandler
  617. end mouseUp
  618.  
  619.  
  620.  
  621. -- part 23 (button)
  622. -- low flags: 00
  623. -- high flags: 0000
  624. -- rect: left=176 top=148 right=160 bottom=188
  625. -- title width / last selected line: 0
  626. -- icon id / first selected line: 0 / 0
  627. -- text alignment: 1
  628. -- font id: 0
  629. -- text size: 12
  630. -- style flags: 0
  631. -- line height: 16
  632. -- part name: Israel
  633. ----- HyperTalk script -----
  634. on mouseUp
  635.   global clickedCountry
  636.   put "Israel" into clickedCountry
  637.   countryHandler
  638. end mouseUp
  639.  
  640.  
  641.  
  642. -- part 24 (field)
  643. -- low flags: 00
  644. -- high flags: 0002
  645. -- rect: left=8 top=31 right=148 bottom=130
  646. -- title width / last selected line: 0
  647. -- icon id / first selected line: 0 / 0
  648. -- text alignment: 0
  649. -- font id: 3
  650. -- text size: 12
  651. -- style flags: 0
  652. -- line height: 16
  653. -- part name: Prompt
  654.  
  655.  
  656. -- part 25 (field)
  657. -- low flags: 80
  658. -- high flags: 4007
  659. -- rect: left=394 top=23 right=198 bottom=500
  660. -- title width / last selected line: 0
  661. -- icon id / first selected line: 0 / 0
  662. -- text alignment: 0
  663. -- font id: 3
  664. -- text size: 7
  665. -- style flags: 0
  666. -- line height: 9
  667. -- part name: CountryList
  668.  
  669.  
  670. -- part 29 (field)
  671. -- low flags: 80
  672. -- high flags: 0004
  673. -- rect: left=153 top=83 right=273 bottom=486
  674. -- title width / last selected line: 0
  675. -- icon id / first selected line: 0 / 0
  676. -- text alignment: 1
  677. -- font id: 2
  678. -- text size: 18
  679. -- style flags: 0
  680. -- line height: 24
  681. -- part name: ScoreCard
  682.  
  683.  
  684. -- part 30 (field)
  685. -- low flags: 81
  686. -- high flags: 0004
  687. -- rect: left=169 top=42 right=323 bottom=468
  688. -- title width / last selected line: 0
  689. -- icon id / first selected line: 0 / 0
  690. -- text alignment: 1
  691. -- font id: 3
  692. -- text size: 12
  693. -- style flags: 0
  694. -- line height: 16
  695. -- part name: About
  696.  
  697.  
  698. -- part 31 (button)
  699. -- low flags: 00
  700. -- high flags: 2000
  701. -- rect: left=500 top=330 right=342 bottom=512
  702. -- title width / last selected line: 0
  703. -- icon id / first selected line: 0 / 0
  704. -- text alignment: 1
  705. -- font id: 0
  706. -- text size: 12
  707. -- style flags: 0
  708. -- line height: 16
  709. -- part name: New Button
  710. ----- HyperTalk script -----
  711. on mouseUp
  712.   global countryNum
  713.   put 15 into countryNum
  714. end mouseUp
  715.  
  716.  
  717.  
  718. -- part 32 (field)
  719. -- low flags: 80
  720. -- high flags: 0007
  721. -- rect: left=283 top=23 right=198 bottom=392
  722. -- title width / last selected line: 0
  723. -- icon id / first selected line: 0 / 0
  724. -- text alignment: 0
  725. -- font id: 3
  726. -- text size: 7
  727. -- style flags: 0
  728. -- line height: 9
  729. -- part name: TempList
  730.  
  731.  
  732. -- part 33 (field)
  733. -- low flags: 81
  734. -- high flags: 0004
  735. -- rect: left=169 top=42 right=323 bottom=468
  736. -- title width / last selected line: 0
  737. -- icon id / first selected line: 0 / 0
  738. -- text alignment: 1
  739. -- font id: 3
  740. -- text size: 12
  741. -- style flags: 0
  742. -- line height: 16
  743. -- part name: Help
  744.  
  745.  
  746. -- part 36 (field)
  747. -- low flags: 80
  748. -- high flags: 0007
  749. -- rect: left=239 top=23 right=198 bottom=281
  750. -- title width / last selected line: 0
  751. -- icon id / first selected line: 0 / 0
  752. -- text alignment: 0
  753. -- font id: 3
  754. -- text size: 7
  755. -- style flags: 0
  756. -- line height: 9
  757. -- part name: RandomList
  758.  
  759.  
  760. -- part 38 (field)
  761. -- low flags: 81
  762. -- high flags: 0007
  763. -- rect: left=130 top=23 right=198 bottom=237
  764. -- title width / last selected line: 0
  765. -- icon id / first selected line: 0 / 0
  766. -- text alignment: 0
  767. -- font id: 3
  768. -- text size: 7
  769. -- style flags: 0
  770. -- line height: 9
  771. -- part name: PermList
  772.  
  773.  
  774. -- part 39 (button)
  775. -- low flags: 00
  776. -- high flags: 8003
  777. -- rect: left=19 top=303 right=325 bottom=119
  778. -- title width / last selected line: 0
  779. -- icon id / first selected line: 0 / 0
  780. -- text alignment: 1
  781. -- font id: 0
  782. -- text size: 12
  783. -- style flags: 0
  784. -- line height: 16
  785. -- part name: Quit
  786. ----- HyperTalk script -----
  787. on mouseUp
  788.   domenu Quit HyperCard
  789. end mouseUp
  790.  
  791.  
  792.  
  793. -- part contents for card part 25
  794. ----- text -----
  795. Turkey
  796. United Arab Emirates
  797. South Yemen
  798. Qatar
  799. Saudi Arabia
  800. Egypt
  801. Syria
  802. Pakistan
  803. Oman
  804. Yemen
  805. Jordan
  806. Kuwait
  807. Iran
  808. Bahrain
  809. Lebanon
  810. Afghanistan
  811. Israel
  812. Iraq
  813.  
  814. -- part contents for card part 24
  815. ----- text -----
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823. -- part contents for card part 29
  824. ----- text -----
  825. You missed
  826. 9
  827. Countries
  828.  
  829. Your Score is
  830. 50
  831. Percent
  832.  
  833. -- part contents for card part 30
  834. ----- text -----
  835.  
  836. Middle East Countries
  837.  
  838. Created by Dave Duncan
  839.  
  840. Inspired by the program "Europe" 
  841. on the DiskWorld Sampler Disk.
  842.  
  843. I had so much fun learning the countries of Europe, that I thought it might be fun to have a stack which helped teach the countries of the Middle East.  I never have been able to figure out all the geographic relationships of that area.  This isn't as snazzy or complete as 
  844. "Europe", but anyone is welcome to enhance it.
  845.  
  846. (Click when done.)
  847.  
  848. -- part contents for card part 33
  849. ----- text -----
  850.  
  851. MIDDLE EAST HELP
  852.  
  853. Quiz Mode
  854. The country is requested in the upper-left
  855. corner of this card.
  856. Click on the dot representing that country.
  857.  
  858. Learn Mode
  859. Click on the dot of any country, and its name will be shown in the upper-left of this card.
  860.  
  861. Scramble
  862. Scrambles the order in which the quiz asks for the countries. 
  863.  
  864. (click when done)
  865.  
  866. -- part contents for card part 38
  867. ----- text -----
  868. Egypt
  869. Jordan
  870. Israel
  871. Lebanon
  872. Syria
  873. Turkey
  874. Iraq
  875. Iran
  876. Afghanistan
  877. Pakistan
  878. Saudi Arabia
  879. Kuwait
  880. Bahrain
  881. Qatar
  882. United Arab Emirates
  883. Oman
  884. South Yemen
  885. Yemen